Document Python (debugpy) debugging in the dbg skill - #13
Merged
waltoss merged 1 commit intoJun 1, 2026
Conversation
Python is already supported via the debugpy DAP adapter, but the skill docs only listed Node/Bun/Java/native. Add Python to the description, runtimes table, and core loop, plus a dedicated section covering both the launch flow (`dbg launch python3 app.py`) and the TCP attach flow (`python -m debugpy --listen <port>` + `dbg attach <port> --runtime python`). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
waltoss
approved these changes
Jun 1, 2026
waltoss
left a comment
Contributor
There was a problem hiding this comment.
LGTM, thank you for your contribution !
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Python is already supported via the debugpy DAP adapter (PR #11 wired up the TCP-attach path), but the skill docs still only listed Node/Bun/Java/native. This adds Python coverage so agents know how to use it.
Changes to
.claude/skills/debug-that/:break-fnworks for Python and thatset/hotpatchremain JS/TS-only.python (debugpy)under--runtime.Two documented flows:
dbg launch --brk python3 app.py(auto-detected).python -m debugpy --listen <port> --wait-for-client app.pythendbg attach <port> --runtime python— connects directly over TCP per the connector refactor in Refactor DAP attach: transport + connector strategies (replaces #10) #11.Test plan
dbg eval/dbg state/dbg step/dbg continueall work; confirmed execution genuinely suspends at the breakpoint.🤖 Generated with Claude Code